home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / Development / ncurses-5.3 / ncurses / widechar / lib_vid_attr.c < prev    next >
Encoding:
C/C++ Source or Header  |  2002-10-27  |  3.6 KB  |  95 lines

  1. /****************************************************************************
  2.  * Copyright (c) 2002 Free Software Foundation, Inc.                        *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *  Author: Thomas E. Dickey 2002                                           *
  31.  ****************************************************************************/
  32.  
  33. #include <curses.priv.h>
  34. #include <term.h>
  35.  
  36. MODULE_ID("$Id: lib_vid_attr.c,v 1.1 2002/05/11 20:55:26 tom Exp $")
  37.  
  38. #define set_color(mode, pair) mode &= ~A_COLOR; mode |= COLOR_PAIR(pair)
  39.  
  40. NCURSES_EXPORT(int)
  41. vid_puts(attr_t newmode, short pair, void *opts GCC_UNUSED, int (*outc) (int))
  42. {
  43.     T((T_CALLED("vid_puts(%s,%d)"), _traceattr(newmode), pair));
  44.     set_color(newmode, pair);
  45.     returnCode(vidputs(newmode, outc));
  46. }
  47.  
  48. #undef vid_attr
  49. NCURSES_EXPORT(int)
  50. vid_attr(attr_t newmode, short pair, void *opts GCC_UNUSED)
  51. {
  52.     T((T_CALLED("vid_attr(%s,%d)"), _traceattr(newmode), pair));
  53.     set_color(newmode, pair);
  54.     returnCode(vidputs(newmode, _nc_outch));
  55. }
  56.  
  57. NCURSES_EXPORT(attr_t)
  58. term_attrs(void)
  59. {
  60.     attr_t attrs = WA_NORMAL;
  61.  
  62.     T((T_CALLED("term_attrs()")));
  63.     if (enter_alt_charset_mode)
  64.     attrs |= WA_ALTCHARSET;
  65.  
  66.     if (enter_blink_mode)
  67.     attrs |= WA_BLINK;
  68.  
  69.     if (enter_bold_mode)
  70.     attrs |= WA_BOLD;
  71.  
  72.     if (enter_dim_mode)
  73.     attrs |= WA_DIM;
  74.  
  75.     if (enter_reverse_mode)
  76.     attrs |= WA_REVERSE;
  77.  
  78.     if (enter_standout_mode)
  79.     attrs |= WA_STANDOUT;
  80.  
  81.     if (enter_protected_mode)
  82.     attrs |= WA_PROTECT;
  83.  
  84.     if (enter_secure_mode)
  85.     attrs |= WA_INVIS;
  86.  
  87.     if (enter_underline_mode)
  88.     attrs |= WA_UNDERLINE;
  89.  
  90.     if (SP->_coloron)
  91.     attrs |= A_COLOR;
  92.  
  93.     returnAttr(attrs);
  94. }
  95.